home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Programmation
/
jedit
/
jedit5.1.0install.exe
/
{app}
/
macros
/
Editing
/
Open_Line_Above.bsh
< prev
next >
Wrap
Text File
|
2013-07-28
|
309b
|
10 lines
/** Open_Line_Above.bsh:
mimics the Ctrl-Shift-Enter combination in Eclipse,
opening a new blank line above the current cursor position.
Author: Scott LeBaron
License: GPL v 2.0
*/
textArea.goToStartOfWhiteSpace(false);
textArea.insertEnterAndIndent();
textArea.goToPrevLine(false);